files_array = new Array( // // list the files below, giving a header for each new section // pay close attention to quotes, commas and slash direction - / not \ // "files/REC Roster '19-'22 2019-09.pdf", "Regional Executive Council", "files/Local_Ministers_List_2015-06-14.pdf", "Local Minister List", "files/REGIONALGUIDELINES5-26-12.pdf", "Regional Guidelines", "files/OFS page under construction.pdf", "Regional Fraternal & Pastoral Visitation Documents (under construction)", // end of list "end", "end"); // show the list defined above // for (counter=0; counter < files_array.length; counter++) { if (files_array[counter]=="header") { counter++; document.write("

"); document.write(files_array[counter]); document.write("

"); } else if (files_array[counter]=="end") { counter++; } else { document.write(" "); counter++; document.write(files_array[counter]); document.write("

"); } }